iBATIS.NET Class Library DataMapper V1.6.1, DataAccess V1.9.1

DictionaryRowDelegate<K,V> Delegate

A delegate called once per row in the QueryForMapWithRowDelegate method

[Visual Basic]
Public Delegate Sub DictionaryRowDelegate<K,V>( _
   ByVal DictionaryRowDelegate<K,V>.K As `0, _
   ByVal DictionaryRowDelegate<K,V>.V As `1, _
   ByVal Object As Object, _
   ByVal IDictionary<K,V> As IDictionary{`0,`1} _
)
[C#]
public delegate void DictionaryRowDelegate<K,V>(
   DictionaryRowDelegate<K,V>.K key,
   DictionaryRowDelegate<K,V>.V value,
   Object parameterObject,
   IDictionary<K,V> dictionary
);

Parameters

key
value
parameterObject
The optional parameter object passed into the QueryForMapWithRowDelegate method.
dictionary
The IDictionary that will be returned to the caller.

Requirements

Namespace: IBatisNet.DataMapper

Assembly: IBatisNet.DataMapper (in IBatisNet.DataMapper.dll)

See Also

IBatisNet.DataMapper Namespace